home *** CD-ROM | disk | FTP | other *** search
- %%Title: GraphiC PostScript file
- %%Creator: Scientific Endeavors Corp.
- %%Pages: 1
- %%DocumentProcessColors: Cyan Magenta Yellow Black
- %% Copyright 1988-1993 by Scientific Endeavors Corp. All rights reserved.
- %%EndComments
- %%BeginProlog
- /downdict 4 dict def
- /sdown
- {downdict begin
- /thestring exch def
- /lineskip exch def
- thestring
- {
- /charcode exch def
- /thechar ( ) dup 0 charcode put def
- 0 lineskip neg rmoveto
- gsave
- thechar stringwidth pop 2 div neg 0 rmoveto
- thechar show
- grestore
- } forall
- end
- } def
-
- /updict 4 dict def
- /sup
- {updict begin
- /thestring exch def
- /lineskip exch def
- thestring
- {
- /charcode exch def
- /thechar ( ) dup 0 charcode put def
- 0 lineskip rmoveto
- gsave
- thechar stringwidth pop 2 div neg 0 rmoveto
- thechar show
- grestore
- } forall
- end
- } def
-
- /leftdict 4 dict def
- /sleft
- {leftdict begin
- /thestring exch def
- thestring
- {
- /charcode exch def
- /thechar ( ) dup 0 charcode put def
- gsave
- thechar stringwidth pop neg 0 rmoveto
- thechar show
- grestore
- } forall
- % need another left shift after the string is printed
- thechar stringwidth pop neg 0 rmoveto
- end
- } def
-
- /path{newpath moveto{lineto}repeat} bind def
- /cnp{newpath moveto{lineto}repeat closepath} bind def
- /clp{moveto{lineto}repeat closepath} bind def
- /rps{ 3 1 roll path stroke} bind def
- /rcs{ 3 1 roll clp stroke} bind def
- /setF { currentscreen 4 -2 roll pop 3 1 roll setscreen} bind def
- %%EndProlog
-